home *** CD-ROM | disk | FTP | other *** search
/ Libris Britannia 4 / science library(b).zip / science library(b) / SECURITY / 0058.ZIP / PC-MENU.151 < prev    next >
Text File  |  1984-02-09  |  2KB  |  49 lines

  1. 1000 REM
  2. 1010 REM
  3. 1020 REM          <<<<  P C - M E N U   >>>>
  4. 1030 REM
  5. 1040 REM        * * * * * * * * * * * * * * *
  6. 1050 REM        *                           *
  7. 1060 REM        *  COPYRIGHT in the Public  *
  8. 1070 REM        *     Domain in 1984 by     *
  9. 1080 REM        *     Richard N. Colvard    *
  10. 1090 REM        *                           *
  11. 1100 REM        * For IBM Personal Computer *
  12. 1110 REM        *                           *
  13. 1120 REM        * * * * * * * * * * * * * * *
  14. 1130 REM
  15. 1140 REM
  16. 1150 CLS
  17. 1160 PRINT "      -------> PC Security by Encipherment <-------            "
  18. 1170 PRINT "                                                               "
  19. 1180 PRINT "                                                               "
  20. 1190 PRINT "       Options:       IBM PC-DOS  8 0 8 8  Version             "
  21. 1200 PRINT "                                                               "
  22. 1210 PRINT "              (1) SuperEncipherment of Binary Files            "
  23. 1220 PRINT "                  resulting in Binary files. This data         "
  24. 1230 PRINT "                  will contain non-printable characters.       "
  25. 1240 PRINT "                  This may be used to encode/decode            "
  26. 1250 PRINT "                  binary data. Reads only FILES by sectors.    "
  27. 1260 PRINT "                                                               "
  28. 1270 PRINT "              (2) SuperEncipherment of Printable data          "
  29. 1280 PRINT "                  input from files or Console. The             "
  30. 1290 PRINT "                  output code is printable and line-           "
  31. 1300 PRINT "                  oriented; using variable lines based         "
  32. 1310 PRINT "                  on carriage returns/line feeds <CR>          "
  33. 1320 PRINT "                                                               "
  34. 1330 PRINT "              (3) Documentation/Help screen                    "
  35. 1340 PRINT "                                                               "
  36. 1350 PRINT "              (9) - - - EXIT / STOP / END of Menu              "
  37. 1360 PRINT " "
  38. 1370 INPUT " Enter Which Option NUMBER ====> ";O%
  39. 1380 REM
  40. 1390 IF O%=1 THEN CHAIN "PC-CODE1.EXE"
  41. 1400 IF O%=2 THEN CHAIN "PC-CODE2.EXE"
  42. 1410 IF O%=3 THEN CHAIN "PC-HELP.EXE"
  43. 1420 CLS
  44. 1430 END
  45.  THEN CHAIN "PC-CODE1.EXE"
  46. 1400 IF O%=2 THEN CHAIN "PC-CODE2.EXE"
  47. 1410 IF O%=3 THEN CHAIN "PC-HELP.EXE"
  48. 1420 CLS
  49. 1430 END